home *** CD-ROM | disk | FTP | other *** search
- # Verify.tcl --
- #
- # Config option verification routines.
- #
- # Copyright (c) 1996, Expert Interface Technologies
- #
- # See the file "license.terms" for information on usage and redistribution
- # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- #
-
- proc tixVerifyBoolean {val} {
- return [tixGetBoolean $val]
- }
-
- proc tixVerifyDirectory {val} {
- if ![file isdir $val] {
- error "\"$val\" is not a directory"
- }
- return $val
- }
-
-